C 刪除字符串中某個指定的字符 #include <stdio.h> char *del_char(char *str, char ch) { unsigned char i=0,j=0; while(str ...